From: Eric S. Raymond Date: Sat, 25 Oct 2014 20:11:24 +0000 (-0400) Subject: Looking for .bzr as a check for top-level directory will soon be a bad idea. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~23^2~3423^2~674 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8e297e0a84329beaf2146ad846baca86c2378f62;p=emacs.git Looking for .bzr as a check for top-level directory will soon be a bad idea. Fortunately the other two checks should be quite sufficient. --- diff --git a/admin/check-doc-strings b/admin/check-doc-strings index a0b5acb623f..13e8b0cd8e7 100755 --- a/admin/check-doc-strings +++ b/admin/check-doc-strings @@ -18,7 +18,7 @@ formal parameters, docstrings, and lispref texi. This program is in the public domain.\n"; die $usage if @ARGV; -die $usage unless -r "src/alloc.c" && -d ".bzr" && -d "lisp"; +die $usage unless -r "src/alloc.c" && -d "lisp"; my %texi_funtype; my %texi_arglist;